home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / for_birt.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  753 b   |  38 lines

  1. stop();
  2. help_bt.onPress = function()
  3. {
  4.    so1.start(0,1);
  5.    this.gotoAndStop(2);
  6. };
  7. help_bt.onRollOver = function()
  8. {
  9.    so1.start(0,1);
  10.    this.help_bt_rollover.gotoAndStop(2);
  11. };
  12. help_bt.onRollOut = function()
  13. {
  14.    this.help_bt_rollover.gotoAndStop(1);
  15. };
  16. help_bt.onRelease = help_bt.onReleaseOutside = function()
  17. {
  18.    gotoAndStop(3);
  19. };
  20. game_start_bt.onPress = function()
  21. {
  22.    so1.start(0,1);
  23.    this.gotoAndStop(2);
  24. };
  25. game_start_bt.onRollOver = function()
  26. {
  27.    so1.start(0,1);
  28.    this.game_start_bt_rollover.gotoAndStop(2);
  29. };
  30. game_start_bt.onRollOut = function()
  31. {
  32.    this.game_start_bt_rollover.gotoAndStop(1);
  33. };
  34. game_start_bt.onRelease = game_start_bt.onReleaseOutside = function()
  35. {
  36.    gotoAndStop(4);
  37. };
  38.